﻿@charset "utf-8";

/* CSS Document */

* {
    outline: none;
}


/*主题*/

:root {
    --head_height: 5rem;
    --colour1: #1343a1;
    --colour2: #fecd1f;
    --colour3: #ff9600;
    --dark: #2d2e30;
    --index_title: #000542;
    --title: #333;
    --text: #666;
    --small_text: #999;
    --tips_text: #ccc;
    --grey_bg: #f7f7f7;
    --btn_bg: #ebebeb;
    --shadow: rgb(40, 43, 109, 0.08);
}

body {
    margin: 0px;
    padding: 0px;
    background: #fff;
    position: relative;
}

body.index {
    padding-top: 0;
}

body.product-body {
    padding-top: var(--head_height);
}

body.modal-open {
    width: 100vw;
    height: 100vh;
    overflow: hidden!important;
}

body.menu-open {
    width: 100vw;
    height: 100vh;
    overflow-y: hidden!important;
}

body,
html {
    font-family: Arial, "微软雅黑", Microsoft YaHei;
    font-weight: normal;
    font-size: 16px;
    color: var(--text);
}

.font-en {
    font-family: 'en', Arial, "微软雅黑", Microsoft YaHei;
    font-weight: 900;
}

@font-face {
    font-family: 'en';
    src: local('☺'), url(../font/HelveticaNeueLTPro-HvCn.otf);
    font-weight: 900;
    font-style: normal;
}

.index-title {
    color: var(--index_title);
}

.title {
    color: var(--title);
}

.colour1 {
    color: var(--colour1)
}

.colour2 {
    color: var(--colour2)
}

.colour3 {
    color: var(--colour3)
}

.colour-bg1 {
    background-color: var(--colour1)
}

.colour-bg2 {
    background-color: var(--colour2)
}

.colour1-btn {
    color: #fff!important;
    background-color: var(--colour1)
}

.colour1-btn:hover {
    background-color: var(--colour2)
}

.colour-grey-btn {
    color: var(--text)!important;
    background-color: var(--grey_bg)
}

.colour-grey-btn:hover {
    background-color: var(--colour1)
}

.colour-white-btn {
    color: var(--text)!important;
    background-color: #fff;
}

.colour-white-btn:hover {
    background-color: var(--colour1)
}

.title-color {
    background: -o-linear-gradient(0deg, var(--colour1) 15%, var(--colour3) 80%);
    background: linear-gradient(0deg, var(--colour1) 15%, var(--colour3) 80%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

dd,
dl,
dt,
ul,
li {
    margin: 0;
    padding: 0;
    list-style: none;
}

input {
    margin: 0;
    outline: none
}

a {
    text-decoration: none;
}

a:link {
    color: inherit;
}


/*未访问样式*/

a:hover {
    text-decoration: none;
}

a:focus {
    text-decoration: none;
}

a:hover,
a:focus,
input:hover,
input:focus,
button:focus,
button:hover {
    outline: none;
}

a.text-link {
    text-decoration: underline;
}

a.text-link:hover {
    color: var(--colour1);
}

h1,
.h1 {
    font-size: 3.75rem;
}

h2,
.h2 {
    font-size: 2.5rem;
}

h3,
.h3 {
    font-size: 2rem;
}

h4,
.h4 {
    font-size: 1.5rem;
}

h5,
.h5 {
    font-size: 1.25rem;
}

h6,
.h6 {
    font-size: 1.125rem;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 0.75rem;
}

i {
    font-weight: normal;
}

hr {
    border: none;
    border-top: 1px solid #ebebeb;
    margin: 1.5rem 0px;
}

img {
    max-width: 100%;
}

p {
    line-height: 1.75em;
}

pre {
    display: block;
    border: none;
    background: none;
    line-height: 1.75em;
    color: var(--text);
    padding: 0px;
    white-space: pre-wrap;
    font-family: Arial, "微软雅黑", Microsoft YaHei;
}

section {
    max-width: 100vw;
    background: #fff;
    overflow: hidden;
}

::-webkit-scrollbar {
    width: 0.5rem;
    height: 0.5rem;
}

::-webkit-scrollbar-track {
    background: #ebebeb;
}


/*滚动条背景*/

::-webkit-scrollbar-thumb {
    background: var(--colour1);
}


/*滚动条设置*/


/*表单*/

form>div {
    margin-bottom: 1rem;
}

form>div:last-child {
    margin-bottom: 0;
}

form div.row {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
}

form div.row>div {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

form p {
    margin-bottom: 0.375rem;
    font-size: 85%;
    opacity: 0.8;
}

form input,
form select {
    padding: 0 1rem;
    width: 100%;
    line-height: 2.5em;
    height: 2.5em;
    font-size: 1rem;
    color: var(--text);
    border: 1px solid #e0e0e0;
}

form select {
    color: var(--text);
    padding-right: 2.5rem;
    appearance: none!important;
    -webkit-appearance: none!important;
    -moz-appearance: none!important;
    appearance: none!important;
    background-image: url(../images/arrow-down.svg);
    background-repeat: no-repeat;
    background-position: calc(100% - 0.75rem) center;
    background-size: 1rem 1rem;
}

form textarea {
    padding: 0.25rem 1rem;
    width: 100%;
    line-height: 2.5em;
    height: 10em;
    font-size: 1rem;
    color: var(--text);
    border: 1px solid #e0e0e0;
}

form button.btn {
    padding: 0 3rem;
    font-size: 1rem;
    line-height: 2.75rem;
    border: none;
    color: #fff;
    background: var(--colour1);
    cursor: pointer;
    transition: all 0.4s;
}

form button.btn:hover {
    color: #fff;
    background: var(--colour2);
}


/*表格边框样式*/

table,
tbody,
tr,
td {
    border: none;
}

table tr {
    border-right: 1px solid #e6e6e6;
    border-bottom: 1px solid #e6e6e6;
}

table td {
    line-height: 1.5em;
    padding: 0.5rem 1.125rem;
    border-left: 1px solid #e6e6e6;
    border-top: 1px solid #e6e6e6;
}

table td p {
    margin: 0px;
}


/*boostrap遮罩层导致页面抖动*/

.modal-open {
    overflow: scroll !important;
}


/*页面内容宽度*/

.container {
    max-width: 1430px;
    width: 90%;
}

.sticky {
    position: sticky;
    top: 0;
}


/*图片包含*/

.obj-contain {
    -o-object-fit: contain;
    object-fit: contain;
}


/*图片裁切*/

.obj-cover,
.obj-cover img {
    -o-object-fit: cover;
    object-fit: cover;
}

.obj-cover img {
    width: 100%;
    height: 100%;
}


/*图片放大*/

.zoom-img {
    overflow: hidden;
}

.zoom-img img {
    width: 100%;
    transform: scale(1);
    transition: all ease 0.6s;
}

.zoom-img:hover img {
    transform: scale(1.075);
}


/*响应式图片等比居中*/

.img-center {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 100%;
}

.img-center img {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
}

.zoom-img:hover .img-center img,
.zoom-img.img-center:hover img {
    -webkit-transform: translate(-50%, -50%) scale(1.075);
    transform: translate(-50%, -50%) scale(1.075);
}


/*背景裁切*/

.bg-cover {
    background-position: center;
    background-size: cover;
}

.bg-fixed {
    background-attachment: fixed;
}


/*视频播放盒子*/

.video-box {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 0px;
    padding-bottom: 56.25%;
    background: #000;
}

.video-box:before {
    content: "\b20";
    font-family: "iconfont" !important;
    font-weight: normal;
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    width: 3.5rem;
    height: 3.5rem;
    line-height: 3.5rem;
    font-size: 1.5rem;
    text-align: center;
    color: #fff;
    background-color: var(--colour1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 1;
    transition: all .4s;
}

.video-box:hover:before {
    content: "\b20";
    background-color: var(--colour2);
}

.video-box.play:before {
    content: "\b20";
    opacity: 0;
}

.video-box video {
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    /*object-fit: contain;*/
    /*尺寸不匹配加黑边*/
    object-fit: cover;
    /*内容自适应裁切*/
    overflow-clip-margin: content-box;
    overflow: clip;
    /*元素溢出容器的时候隐藏，同时不会有滚动定位等行为。*/
    opacity: 0.8;
    transition: all 0.4s;
}

.video-box.play video {
    opacity: 1;
}


/*视频相关*/

a.video-btn {
    position: relative;
    padding: 0;
}

a.video-btn img.obj-cover {
    width: 100%;
    height: 100%;
}

a.video-btn:before {
    content: "\b20";
    position: absolute;
    z-index: 3;
    left: 50%;
    top: 50%;
    width: 5rem;
    height: 5rem;
    line-height: 5rem;
    font-family: "iconfont" !important;
    font-size: 2rem;
    text-align: center;
    color: #fff;
    transform: translate(-50%, -50%);
    border: 2px solid #fff;
    border-radius: 50%;
    transition: all .4s;
}

a.video-btn:hover:before {
    content: "\b20";
    color: #fff;
    border: 2px solid var(--colour2);
    background: var(--colour2);
}

.video-list a.video-btn:after {
    content: "";
    position: absolute;
    z-index: 2;
    left: 0%;
    top: 0%;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    transition: all .4s;
}

.video-list a.video-btn:hover:before,
.video-list a.video-btn:hover:after {
    opacity: 0;
}

#video-modal {}

#video-modal .video-box {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

#video-modal .modal-dialog {
    position: absolute;
    z-index: 1001;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -80%);
}

#video-modal.show .modal-dialog {
    transform: translate(-50%, -50%);
}

#video-modal .modal-content {
    padding: 0px;
    border: none;
    border-radius: 0px;
}

#video-modal .modal-header {
    border: none;
    padding: 0;
}

#video-modal #video-close {
    position: absolute;
    z-index: 1;
    right: 0;
    top: 0;
    opacity: 0.7;
    transition: all .3s;
}

#video-modal #video-close:hover {
    opacity: 1;
}

#video-modal #video-close span {
    display: inline-block;
    width: 90px;
    height: 90px;
    line-height: 90px;
    font-size: 30px;
    font-weight: normal;
    color: #fff;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
}

#video-modal .modal-body {
    font-size: 0;
    padding: 0;
    border: nono;
    border-radius: 0;
}

#video-modal .modal-body #video {
    width: 100%;
}

#video-modal .modal-dialog {
    width: 1280px;
    max-width: 92%;
}


/*边距盒子*/

.padding-box {
    padding-top: 12vh;
    padding-bottom: 12vh;
}

.padding-top {
    padding-top: 12vh;
}

.padding-bottom {
    padding-bottom: 12vh;
}

.small-padding-box {
    padding-top: 10vh;
    padding-bottom: 10vh;
}

.small-padding-top {
    padding-top: 10vh;
}

.small-padding-bottom {
    padding-bottom: 10vh;
}

.main {
    position: relative;
    z-index: 2;
    background: var(--grey_bg);
}

.grey-box {
    background: var(--grey_bg);
}

.white-box {
    background: #fff;
}

.clear-box:after {
    content: "";
    display: block;
    width: 100%;
    height: 0;
}


/*横线*/

.line {
    margin: 1rem 0;
    display: block;
    width: 2rem;
    height: 0.1125rem;
    line-height: 1px;
    font-size: 0px;
    background: var(--colour1);
}


/*内页翻页*/

.page-box {
    padding-top: 30px;
}

.page {
    font-size: 0;
    color: var(--text);
}

.page a {
    display: inline-block;
    margin: 0 0.5rem;
    width: 3.5rem;
    height: 3.5rem;
    line-height: calc(3.5rem - 4px);
    font-size: 1.125rem;
    font-weight: bold;
    color: var(--title);
    text-align: center;
    border-radius: 50%;
    border: 2px solid var(--btn_bg);
    transition: all 0.4s;
}

.page a:not([href]) {
    color: var(--tips_text) !important;
    border: 2px solid var(--btn_bg) !important;
    background: none !important;
}

.page a.active {
    color: #fff!important;
    background: var(--colour2) !important;
    border: 2px solid var(--colour2) !important;
}

.page a:hover,
.page button:hover {
    color: var(--colour2);
    border: 2px solid var(--colour2);
}

.page a .span {
    font-size: inherit;
    line-height: inherit;
    color: inherit;
}


/*头部*/

#head {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    box-shadow: 0 0 1rem rgba(29, 37, 48, 0.07);
    color: var(--text);
    border-bottom: hidden;
    background: rgba(255, 255, 255, 1);
    transition: all 0.6s;
}


/*头部标志*/

.head-conent {
    display: flex;
    padding: 0;
    padding-right: 3.5rem;
    width: 100%;
    height: var(--head_height);
}

.navbar-brand {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    white-space: normal;
    padding: 0 2rem 0 3.5rem;
    margin: 0px;
}

.navbar-brand img {
    max-width: none;
    height: 50%;
}

.navbar-brand>div {
    position: absolute;
    z-index: 2;
    left: 0;
    border-top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    white-space: normal;
    opacity: 0;
}

.scroll .navbar-brand>div,
.index.top .navbar-brand>div,
.white-head.top .navbar-brand>div {
    opacity: 0;
}

.top .navbar-brand>div {
    opacity: 1;
}


/*头部按钮*/

.head-wap-btn {
    display: flex;
    justify-content: flex-end;
    height: 100%;
}

.head-wap-btn .head-btn-language {
    background: var(--colour2);
}

.head-wap-btn .head-btn-language a {
    font-size: 1rem !important;
    color: #fff!important;
}

.head-wap-btn .head-btn-search {
    background: rgba(0, 0, 0, .05);
}

.head-wap-btn .head-btn-search form {
    display: flex;
}

.head-wap-btn .head-btn-search form input {
    width: 10rem;
    background: none;
    border: none;
    height: var(--head_height);
    line-height: var(--head_height);
}

.head-wap-btn .head-btn-search form button {
    background: none;
    border: none;
    width: var(--head_height);
    height: var(--head_height);
    line-height: var(--head_height);
    text-align: center;
    cursor: pointer;
}

.head-wap-btn .head-btn-search form button:hover {
    background: var(--colour2) !important;
    color: #fff!important;
}

.head-wap-btn .head-btn-search form button span {
    font-size: 1.5rem;
    color: inherit;
}

.head-wap-btn .dropdown a {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 0.75rem;
    font-size: 0.875rem;
    line-height: 2em;
    color: var(--text);
}

.head-wap-btn .dropdown:hover a {
    color: var(--colour1);
}

.top .head-wap-btn .dropdown a,
.top .head-wap-btn .dropdown input,
.top .head-wap-btn .dropdown input::placeholder,
.top .head-wap-btn .dropdown button {
    color: #fff;
}

.top .head-wap-btn .dropdown:hover a {
    color: #fff;
    opacity: 0.5;
}

.top.menu-open .head-wap-btn .dropdown:hover a {
    color: #fff;
}

.top.menu-open .head-wap-btn .dropdown a {
    color: var(--text);
}

.top.menu-open .head-wap-btn .dropdown:hover a {
    color: var(--colour1);
    opacity: 1;
}

.head-wap-btn .dropdown a span {
    display: inline-block;
    font-size: 1.5rem;
    color: inherit;
}

.head-wap-btn .dropdown-menu {
    padding: 0.5rem;
    left: auto;
    right: 0;
}

.head-wap-btn .dropdown-menu .title {
    padding: 0 0.5rem;
    font-size: 1.375rem;
    line-height: 1.5rem;
    white-space: nowrap;
}

#wap-menu-btn.navbar-toggler {
    width: var(--head_height);
    background: var(--colour2);
    color: #fff;
    border-radius: 0;
    border: none;
    margin-left: 1rem;
}

#wap-menu-btn.navbar-toggler span {
    width: 1.5rem;
    height: 0.125rem;
    background-color: #fff;
    display: block;
    margin: 0.375rem auto;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

#wap-menu-btn.navbar-toggler:hover {
    cursor: pointer;
}

#wap-menu-btn.navbar-toggler span:nth-child(1) {
    transform: translateY(0.5rem) rotate(45deg);
}

#wap-menu-btn.navbar-toggler span:nth-child(2) {
    opacity: 0;
}

#wap-menu-btn.navbar-toggler span:nth-child(3) {
    transform: translateY(-0.5rem) rotate(-45deg);
}

#wap-menu-btn.navbar-toggler.collapsed span {
    opacity: 1;
    transform: translateY(0) rotate(0);
}

.head-contact {
    padding: 0 1.25em;
    font-size: 1.5rem;
    line-height: var(--head_height);
    color: #fff;
    background: var(--colour2);
}

.head-contact .icon {
    font-size: 1.5rem;
}


/*头部导航*/

#head .navbar-collapse {
    height: 100%;
}

#head .navbar-nav {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    margin: auto;
    height: 100%;
    padding: 0 1%;
}

#head .navbar-nav li {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 1.25rem;
    height: 100%;
}

#head .navbar-nav li:after {
    content: "";
    position: absolute;
    z-index: -1;
    bottom: 0px;
    left: 0%;
    width: 100%;
    height: 0.1875rem;
    background-color: var(--colour3);
    transition: transform .4s cubic-bezier(.4, 0, .2, 1);
    transform: scaleX(0);
    transform-origin: 100%;
}

#head .navbar-nav li:hover:after,
#head .navbar-nav li.on:after {
    content: "";
    transform: scaleX(1);
    transform-origin: 0%;
}

#head .navbar-nav li>a {
    position: relative;
    z-index: 1;
    display: block;
    font-size: 1rem;
    line-height: 38px;
    color: inherit;
    text-align: center;
    border-radius: 0.25rem;
}

#head .navbar-nav li:hover>a {
    color: var(--colour3) !important;
}

#head .navbar-nav .dropdown-menu {
    left: 50%;
    padding: 0.5rem 0;
    margin: 0;
    border: none;
    border-radius: 0;
    box-shadow: 0 0 1rem rgba(0, 0, 0, .05);
    transform: translate( -50%, 0%);
    transition: top 0.6s;
}

#head .navbar-nav .dropdown-menu a {
    display: block;
    padding: 0 1rem;
    font-size: 0.9375rem;
    line-height: 3rem;
    color: var(--text);
    border-bottom: 1px solid rgba(0, 0, 0, .05);
    transition: all 0.4s;
}

#head .navbar-nav .dropdown-menu a:hover {
    color: #fff;
    background: var(--colour2);
}

#head .navbar-nav .dropdown-menu a:last-of-type {
    border-bottom: none;
}


/*手机菜单*/

#wap-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1051;
    background: #fff;
    box-shadow: 0 0 1rem rgba(29, 37, 48, 0.07);
}

#wap-menu .menu-head {
    display: flex;
    justify-content: space-between;
    height: var(--head_height);
    padding-left: 3.5rem;
    background: #fff;
}

#wap-menu .menu-head .menu-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: inherit;
}

#wap-menu .menu-head .menu-logo img {
    max-width: none;
    height: 50%;
}

#wap-menu .menu-head .close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--head_height);
    height: inherit;
    background: var(--colour2);
    opacity: 1;
}

#wap-menu .menu-head .close span {
    font-size: 1.25rem;
    font-weight: normal;
    color: #fff;
}

#wap-menu .menu-body {
    height: calc(100vh - var(--head_height));
    padding: 4vw;
    overflow-y: auto;
    border-top: 1px solid #ebebeb;
}

#wap-menu .menu-body::-webkit-scrollbar {
    width: 0;
    height: 0;
}

#wap-menu .menu-search form {
    display: flex;
    padding: 0.5rem 0;
    margin-top: 1rem;
    margin-bottom: 3rem;
    border-bottom: 2px solid var(--colour2);
}

#wap-menu .menu-search input,
#wap-menu .menu-search button {
    padding: 0;
    border: none;
    border-radius: 0;
    background: none;
    font-size: 1.5rem;
    color: var(--text);
}

#wap-menu .menu-search input {
    font-size: 1.25rem;
    line-height: 1.25em;
}

#wap-menu .menu-search button {
    padding: 0 0.5rem;
    cursor: pointer;
}

#wap-menu .menu-search button span {
    font-size: inherit;
    color: inherit;
}

#wap-menu .navbar-nav {
    padding: 0;
}

#wap-menu .navbar-nav>li>a {
    display: block;
    padding: 0.75rem 0;
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.5em;
    color: var(--dark);
}

#wap-menu .navbar-nav a:focus {
    color: var(--colour1);
}

#wap-menu .navbar-nav>li>div {
    padding: 0;
    border-radius: 0;
    border: none;
}

#wap-menu .navbar-nav>li>div>a {
    display: block;
    padding: 0.5rem;
    font-size: 0.9375rem;
    color: var(--text);
}

#wap-menu .navbar-nav>li>div>div {
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 0.5rem;
}

#wap-menu .navbar-nav>li>div>div>a {
    display: block;
    width: 50%;
    padding: 0.5rem;
    font-size: 0.8375rem;
    color: var(--small_text);
}

#wap-menu .navbar-nav>li>div>div>a:before {
    content: "●  ";
}

#wap-menu .menu-subnav {
    margin-top: 2rem;
}

#wap-menu .menu-subnav li>a {
    display: inline-block;
    padding: 0.5rem 0;
    font-size: 1.125rem;
    color: var(--dark);
    font-weight: bold;
}

#wap-menu .menu-subnav li .subnav a {
    display: block;
    padding: 0.375rem 0;
    font-size: 0.9375rem;
    color: #999;
}

#wap-menu .menu-language {
    margin-top: 4rem;
    padding: 1.5rem;
    background: var(--grey_bg);
}

#wap-menu .menu-language a {
    display: inline-block;
    margin-right: 0.75rem;
    font-size: 0.9375rem;
    color: var(--text);
}

#wap-menu .menu-language a:hover {
    color: var(--colour3);
}

#wap-menu .menu-language svg {
    display: inline-block;
    margin-right: 0.25rem;
    vertical-align: middle;
    width: 1.25rem;
    height: 1.25rem;
}


/*head end*/


/*首页导航特别设置*/

.top #head {
    margin-top: 1rem;
    background: rgba(255, 255, 255, 0);
    box-shadow: 0 0 1rem rgba(29, 37, 48, 0);
}

.top #head .navbar-brand {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.4s;
}

.top #head .navbar-nav li>a {
    color: #fff;
}

.top.menu-open #head {
    background: rgba(255, 255, 255, 1);
}

.top.menu-open #head .navbar-brand {
    -webkit-filter: brightness(1) invert(0);
    filter: brightness(1) invert(0);
}

.top #head .head-btn-search {
    background: rgba(255, 255, 255, 0.05);
}


/*banner*/

#banner {
    position: relative;
    overflow: hidden;
}

#banner .item {
    position: relative;
    z-index: 1;
    background: rgba(5, 6, 26, 1);
}

#banner a {
    display: block;
    font-size: 0;
}

#banner .item .info {
    position: absolute;
    z-index: 1;
    left: 10%;
    right: 10%;
    bottom: 50%;
    line-height: 1.375em;
    text-align: center;
    color: #fff;
    transform: translate(0%, 50%);
}

#banner .item .btn {
    padding: 0;
    border: none;
    margin-bottom: 3rem;
}

#banner .item .btn a span {
    display: inline-block;
    padding: 0 1.5em;
    font-size: 1.25rem;
    line-height: 2.5em;
    text-align: center;
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    transition: all 0.4s;
}

#banner .item .btn a:hover span {
    background: var(--colour1);
}

#banner .item .text {
    text-shadow: 0 0.5em 2em rgba(0, 0, 0, .015);
}

#banner .info .title {
    margin-bottom: 0;
    line-height: 1.25em;
    color: #fff;
    text-transform: Uppercase;
}

#banner .info .subtitle {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    line-height: 1.25em;
    color: #fff;
    opacity: 0.7;
}

#banner .info p {
    margin-bottom: 0;
    font-size: 1.5rem;
}

#banner .info span {
    font-size: 0.875rem;
    opacity: 0.8;
}

#banner picture,
#banner img {
    width: 100%;
    height: 100vh;
}

#banner a {
    display: block;
    position: relative;
}

#banner .item:before {
    content: "";
    display: block;
    position: absolute;
    z-index: 1;
    top: 0px;
    left: 0%;
    width: 100%;
    height: 100%;
    background: url(../video/bg.png) repeat;
    opacity: 0.05;
}

#banner video {
    width: 100vw;
    height: 100vh;
    opacity: 0.5;
}

#banner .owl-nav {
    position: absolute;
    z-index: 3;
    bottom: 6rem;
    right: 10%;
    margin: 0;
    transform: translate(0%, 50%);
}

#banner .owl-nav [class*=owl-] {
    margin: 0 0.5rem;
}

#banner .owl-nav i {
    display: inline-block;
    width: 3.5rem;
    height: 3.5rem;
    line-height: 3.5rem;
    font-size: 1.5rem;
    text-align: center;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 50%;
    transition: all 0.4s;
}

#banner .owl-nav i:hover {
    background: var(--colour1);
    border: 1px solid var(--colour1);
}

#banner .owl-dots {
    position: absolute;
    z-index: 2;
    bottom: 6rem;
    left: 10%;
    margin: 0;
    transform: translate(0%, 50%);
}

#banner.owl-progress .owl-dots .owl-dot span {
    background: #fff;
}

#banner.owl-progress .owl-dot.active svg circle.dotsvg1 {
    stroke: #fff;
}

#banner>.more {
    position: absolute;
    z-index: 3;
    left: 50%;
    bottom: 6rem;
    transform: translate(-50%, 100%);
    font-size: 0.9375rem;
    color: #fff;
    padding-top: 0.375rem;
    text-align: center;
}

#banner>.more:before {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    bottom: 100%;
    width: 1.5rem;
    height: 2.25rem;
    border: 2px solid #fff;
    border-radius: 1.5rem;
    transform: translate(-50%, 0%);
}

#banner>.more:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    bottom: calc(100% + 1.375rem);
    width: 0.125rem;
    height: 0.5rem;
    background: #fff;
    border-radius: 1.5rem;
    transform: translate(-50%, 0%);
    -webkit-animation: shubiao 1.75s infinite;
    animation: shubiao 1.75s infinite;
}

@-webkit-keyframes shubiao {
    0% {
        -webkit-transform: translate(-50%, -0.25rem);
        transform: translate(-50%, -0.25rem);
        opacity: 0;
    }
    100% {
        -webkit-transform: translate(-50%, 0.25rem);
        transform: translate(-50%, 0.25rem);
        opacity: 1;
    }
}

@keyframes shubiao {
    0% {
        -webkit-transform: translate(-50%, -0.25rem);
        transform: translate(-50%, -0.25rem);
        opacity: 0;
    }
    100% {
        -webkit-transform: translate(-50%, 0.25rem);
        transform: translate(-50%, 0.25rem);
        opacity: 1;
    }
}

.bannerIn {
    animation: bannerIn 5s 1;
    -webkit-animation: bannerIn 5s 1;
}

@-webkit-keyframes bannerIn {
    0% {
        opacity: 0;
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bannerIn {
    0% {
        opacity: 0;
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.bannerOut {
    animation: bannerOut 5s 1;
    -webkit-animation: bannerOut 5s 1;
}

@-webkit-keyframes bannerOut {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(1.1);
    }
}

@keyframes bannerOut {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(1.1);
    }
}


/*
#banner picture,#banner img{
	width: 100%;
	height: calc(100vh - var(--head_height));
}
*/


/*首页标语*/

.title-box .h1 {
    margin-bottom: 0.5em;
}

.title-box .subtitle {
    font-size: 1.5rem;
}

.index-slogan .h1 img {
    vertical-align: text-bottom;
}


/*首页数据*/

.index-data {
    margin-top: 3rem;
    display: flex;
}

.index-data li {
    flex: 1;
    text-align: center;
}

.index-data li .num {
    font-size: 2rem;
}

.index-data li .data {
    margin-right: 0.25rem;
    font-size: 4rem;
    line-height: 1em;
}

.index-data li .info {
    font-size: 1.125rem;
}


/*  首页风采 */

.index-style-box .nav-tabs {
    margin-top: 4rem;
    margin-bottom: 3rem;
    border-bottom: 1px solid #ebebeb;
}

.index-style-box .nav-tabs .nav-item {
    margin-right: 4%;
}

.index-style-box .nav-tabs .nav-item a {
    padding: 1rem 0;
    border: none;
    background: none;
}

.index-style-box .nav-tabs .nav-item a.active {
    color: var(--colour1);
    border-bottom: 0.125rem solid var(--colour3);
}

.index-style-box .tab-content .img {
    overflow: hidden;
}

.index-style .item span {
    display: block;
    margin-top: 1rem;
    text-align: center;
    color: var(--small_text);
    transition: all 0.4s;
}

.index-style .item:hover span {
    color: var(--colour1);
}


/*首页产品*/

.index-p-show {
    width: auto;
    margin-top: 2rem;
    margin-left: -1.5rem;
    margin-right: -1.5rem;
    margin-bottom: 2rem;
}

.index-p-show .owl-nav.disabled+.owl-dots {
    margin-top: 0;
}

.index-p-show .item {
    padding: 1.5rem;
}

.index-p-show a {
    display: block;
    background: var(--grey_bg);
    border-bottom: 0.25rem solid var(--grey_bg);
    transition: all 0.4s;
}

.index-p-show a:hover {
    background: #fff;
    border-bottom: 0.25rem solid var(--colour1);
    box-shadow: 0 0.25rem 1rem var(--shadow);
}

.index-p-show .img {
    border: 1px solid var(--grey_bg);
    overflow: hidden;
    transition: all 0.4s;
}

.index-p-show a:hover .img {
    border: 1px solid var(--colour1);
}

.index-p-show .info {
    padding: 2rem 1rem;
    text-align: center;
}

.index-p-show .info .title {
    margin-bottom: 0.25rem;
    font-weight: bold;
}

.index-p-show a:hover .info .title {
    color: var(--colour1);
}

.index-p-show .info .text {
    max-height: 3em;
    font-size: 0.875rem;
    line-height: 1.5em;
    color: var(--small_text);
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.index-p {
    position: relative;
}


/*首页更多*/

a.more-btn {
    display: inline-block;
    padding: 0 2.5em;
    font-size: 0.9375rem;
    line-height: 2.5rem;
    color: var(--dark);
    border-radius: 0.5rem;
    background: var(--colour2);
    transition: all 0.4s;
}

a.more-btn span {
    font-size: 1.125rem;
    transition: margin 0.4s;
}

a.more-btn:hover {
    color: #fff;
    background: var(--colour3);
}

a.more-btn:hover span {
    margin-left: 0.5rem;
}


/*首页关于2*/

.index-about .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.index-about .info {
    width: 40%;
}

.index-about .title {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.index-about .box {
    max-height: 15rem;
    padding-right: 1rem;
    overflow-y: auto;
}

.index-about .box::-webkit-scrollbar {
    width: 7px !important;
}

.index-about .box::-webkit-scrollbar-thumb {
    width: 7px !important;
    border-radius: 5px !important;
    background-color: var(--colour1) !important;
}

.index-about .img {
    width: 48%;
}


/*首页定制*/

.index-customized {
    margin-bottom: 3rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.index-customized .img {
    position: relative;
    z-index: 1;
    width: 52%;
    padding: 2rem;
    border-radius: 2rem;
    box-shadow: 0 0 2rem var(--shadow);
}

.index-customized .index-c {
    position: relative;
    z-index: 1;
    border-radius: 1.5rem;
    border: 1px solid var(--tips_text);
}

.index-customized .index-c .owl-stage-outer {
    position: relative;
    z-index: 1;
    border-radius: 1.5rem;
    overflow: hidden;
}

.index-customized .index-c .owl-stage-outer:before {
    content: "";
    position: absolute;
    z-index: 2;
    top: 0px;
    left: 0%;
    width: 20%;
    padding-bottom: 18%;
    background: url(../images/index-c1.png) right top no-repeat;
    background-size: 100% auto;
    font-size: 0;
}

.index-customized .index-c .owl-stage-outer:after {
    content: "";
    position: absolute;
    z-index: 2;
    bottom: 0px;
    right: 0%;
    width: 30%;
    height: 0;
    padding-bottom: 18%;
    background: url(../images/index-c2.png) right top no-repeat;
    background-size: 100% auto;
    font-size: 0;
}

.index-customized .index-c .owl-nav {
    margin: 0;
}

.index-customized .index-c .item {
    padding-bottom: 60%;
}

.index-customized .index-c img {
    width: 100%;
}

.owl-carousel.index-c .owl-nav [class*=owl-] {
    position: absolute;
    top: 50%;
    display: inline-block;
    margin: 0;
    margin-top: -1.5rem;
    padding: 0px;
    width: 3rem;
    height: 3rem;
    line-height: 3rem;
    font-size: 1.25rem;
    text-align: center;
    color: #333;
    border-radius: 50%;
    background-color: var(--btn_bg);
    box-shadow: 0 0 1.25rem rgba(0, 0, 0, 0.05);
    outline: none;
    cursor: pointer;
    overflow: hidden;
    transform: translateY(-50%);
    transition: all 0.4s ease;
}

.owl-carousel.index-c .owl-nav button.owl-prev {
    left: -2rem;
    transform: translateX(-90%);
}

.owl-carousel.index-c .owl-nav button.owl-next {
    right: -2rem;
    transform: translateX(90%);
}

.owl-carousel.index-c .owl-nav [class*=owl-]:hover {
    color: #fff;
    background-color: var(--colour1);
    text-decoration: none
}

.owl-carousel.index-c .owl-nav [class*=owl-].disabled {
    color: #333;
    background-color: #f2f2f2;
    opacity: 0.3;
    cursor: default;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.owl-carousel.index-c .owl-nav [class*=owl-].disabled:hover {
    color: #333;
    background-color: #f2f2f2;
}

.owl-carousel.index-c .owl-nav [class*=owl-] span,
.index-c .owl-nav [class*=owl-] i {
    display: inline-block;
    width: inherit;
    height: inherit;
    font-size: inherit;
    line-height: inherit;
    color: inherit;
    vertical-align: bottom;
}

.index-customized .info {
    width: 40%;
    display: flex;
    align-items: center;
}

.index-customized .info .btn {
    margin-top: 2.5rem;
    display: inline-block;
    padding: 0 2.5em;
    font-size: 0.9375rem;
    line-height: 2.5rem;
    text-align: center;
    color: #fff;
    background: var(--colour1);
    transition: all 0.4s;
}

.index-customized .info .btn:hover {
    color: #fff;
    background: var(--colour2);
}

.index-customized .info .btn span {
    font-size: 1.25rem;
    color: inherit;
}


/*合作伙伴*/

.index-partner {
    position: relative;
    z-index: 3;
    display: flex;
    flex-wrap: wrap;
    margin-left: -1rem;
    margin-right: -1rem;
}

.index-partner .item {
    padding: 0.75rem;
    width: 15rem;
    display: flex;
    flex-wrap: wrap;
}

.index-partner .item a {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    border: 1px solid #ebebeb;
    overflow: hidden;
}

.index-partner .item a .img {
    padding-bottom: 56%;
}

.index-partner .item a .name {
    position: absolute;
    z-index: 2;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    line-height: 1.25em;
    font-weight: bold;
    color: #fff;
    background: var(--colour2);
    opacity: 0;
    transition: all 0.4s;
}

.index-partner .item a:hover .name {
    opacity: 1;
}


/*首页流程*/

.index-step {
    background: #f9f9f9;
    overflow: hidden;
}

.index-step .head {
    position: relative;
}

.plane {
    position: absolute;
    z-index: 2;
    top: -5vw;
    left: 30vw;
    width: 55vw;
    height: 55vw;
    transform-origin: 49% 49%;
    animation: spin2 6s infinite linear;
}

.plane img {
    width: 100%;
    animation: spin-reverse2 6s infinite linear;
    vertical-align: middle;
}

@keyframes spin2 {
    to {
        transform: rotate(-1turn);
    }
}

@keyframes spin-reverse2 {
    from {
        transform: rotate(-1turn);
    }
}

.index-step .container {
    position: relative;
    z-index: 3;
}

.index-step .line {
    width: 2rem;
    height: 0.25rem;
    background: var(--colour3) !important;
}

.index-step .list {
    margin: 5rem 0 12rem;
    padding: 0 3.5%;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    text-align: center;
}

.index-step .list>.bg {
    position: absolute;
    left: 0;
    right: 0;
    top: 3.5rem;
}

.index-step .list>.bg img {
    width: 100%;
    height: 172px;
}

.index-step .list li {
    position: relative;
    z-index: 2;
}

.index-step .list li:nth-of-type(2n) {
    transform: translate( 0, 150px);
}

.index-step .list .icon-box {
    position: relative;
    z-index: 1;
    display: inline-block;
    margin-bottom: 1rem;
}

.index-step .list .icon-box .bg2 {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    opacity: 0;
    transition: all 0.4s;
}

.index-step .list li:hover .icon-box .bg1 {
    opacity: 1;
    transition: all 0.4s;
}

.index-step .list li:hover .icon-box .bg1,
.index-step .list li.active .icon-box .bg1 {
    opacity: 0;
}

.index-step .list li:hover .icon-box .bg2,
.index-step .list li.active .icon-box .bg2 {
    opacity: 1;
}

.index-step .list li:hover .icon-box .bg1,
.index-step .list li.active .icon-box .bg1,
.index-step .list li:hover .icon-box .bg2,
.index-step .list li.active .icon-box .bg2 {
    transform: rotateY(180deg);
}

.index-step .list .icon-box .icon {
    position: absolute;
    z-index: 1;
    top: 38%;
    left: 50%;
    width: 50%;
    transform: translate( -50%, -50%);
}

.index-step .list .info .title {
    margin-bottom: 0.25rem;
    font-size: 0.9375rem;
    transition: all 0.4s;
}

.index-step .list li:hover .info .title,
.index-step .list li.active .info .title {
    color: var(--colour3);
}

.index-step .list .info p {
    font-size: 0.875rem;
    line-height: 1.25em;
    color: var(--text);
}


/*首页新闻*/

.index-news {
    display: flex;
    justify-content: space-between;
}

.index-news .item {
    position: relative;
    z-index: 1;
}

.index-news .item .img {
    display: block;
    border: 1px solid var(--tips_text);
}

.index-news .item img {
    opacity: 0;
    transition: all 0.4s;
}

.index-news .item:hover img {
    opacity: 1;
}

.index-news .item .info {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    padding: 2rem;
    opacity: 1;
    visibility: visible;
    transition: all 0.4s;
}

.index-news .item:hover .info {
    opacity: 0;
    visibility: hidden;
}

.index-news .item .info .font-en {
    display: block;
    font-size: 2.75rem;
    color: var(--dark);
}

.index-news .item .info .title {
    font-weight: bold;
    color: var(--title);
}

.index-news .item .info pre {
    margin-top: 8%;
    font-size: 0.9375rem;
    line-height: 1.5em;
    max-height: 4.5em;
    color: var(--small_text);
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}


/*页脚*/

#foot {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 5vh 5% 0;
    background: #000542;
    background-size: cover;
    color: #fff;
}

.foot-feedback {
    position: relative;
    z-index: 1;
    padding: 3rem 0;
    width: 35rem;
}

.foot-feedback:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: -1rem;
    right: -5rem;
    width: calc(5vw + 40rem);
    height: 100%;
    background: url(../images/foot-bg.png) no-repeat right center;
    background-size: 100% 100%;
    transition: all .4s;
}

.foot-feedback .feedback input,
.foot-feedback .feedback textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

.foot-feedback .feedback input::placeholder,
.foot-feedback .feedback textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.foot-feedback .feedback .submit-box {
    display: flex;
    justify-content: space-between;
}

.foot-feedback .feedback .submit-box .submit {
    color: var(--colour1);
    background: #fff;
    border-radius: 3rem;
}

.foot-feedback .feedback .submit-box .submit:hover {
    color: #fff;
    background: var(--colour3);
    border-radius: 3rem;
}

.foot-feedback .feedback .submit-box small {
    display: inline-block;
    width: 60%;
    margin: 1rem 0;
    color: rgba(255, 255, 255, 0.5);
}

.foot-box {
    flex-wrap: wrap;
    display: flex;
    justify-content: space-between;
    padding: 3rem 0;
    width: calc(100% - 43rem);
}

.foot-nav a {
    display: block;
    font-size: 0.9375rem;
    line-height: 2em;
    opacity: 0.7;
    color: #fff;
    transition: all 0.4s;
}

.foot-nav .title a {
    display: block;
    font-size: 1.125rem;
    opacity: 1;
}

.foot-nav a:hover {
    display: block;
    opacity: 1;
}

.foot-follow {
    margin-top: 3rem;
    flex-wrap: wrap;
    display: flex;
    justify-content: center;
    width: 100%;
    text-align: center;
}

.foot-follow div {
    margin: 0 2%;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.1);
}

.foot-follow div img {
    display: block;
    width: 100%;
}

.foot-follow div span {
    line-height: 2.5em;
}

.foot-contact {
    width: 100%;
    display: none;
    font-size: 0.875rem;
    line-height: 1.5em;
    color: rgba(255, 255, 255, 0.5);
}

.foot-contact p {
    margin-bottom: 0.25rem;
}

#foot .foot-copyright {
    width: 100%;
    margin-top: 4rem;
    color: rgba(255, 255, 255, 0.5);
}

#foot .foot-copyright>div {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.875rem;
    padding: 1rem 0;
    width: 100%;
    font-size: 0.875rem;
}

#foot .foot-copyright p {
    margin-bottom: 0;
}

#foot .sideBar {
    position: fixed;
    z-index: 10;
    right: 0;
    bottom: 10%;
    transition: all 0.6s;
}

#foot .sideBar>span {
    margin: 0.125rem 0;
    display: block;
    width: 2.75rem;
    height: 2.75rem;
    line-height: 2.75rem;
    font-size: 1.5rem;
    color: #fff;
    text-align: center;
    background: var(--colour1);
    opacity: 1;
    transition: all 0.6s;
}

.top #foot .sideBar {
    opacity: 0;
}

#foot .sideBar>span:hover {
    background: var(--colour2);
    cursor: pointer;
}

#foot .sideBar .sideLink {
    position: absolute;
    z-index: 1;
    right: 0;
    bottom: 110%;
    width: 9rem;
    text-align: center;
    background: #fff;
    box-shadow: 0 0 1rem var(--shadow);
    border-radius: 0.5rem 0 0 0.5rem;
    overflow: hidden;
    transition: all 0.4s;
}

#foot .sideBar .sideLink:not(.show) {
    opacity: 0;
    visibility: hidden;
}

#foot .sideBar .sideLink.show {
    opacity: 1;
    visibility: visible;
}

#foot .sideBar .sideLink .head {
    display: flex;
    justify-content: space-between;
    line-height: 2.25rem;
    color: var(--title);
    background: var(--colour1);
}

#foot .sideBar .sideLink .head strong {
    display: block;
    width: 100%;
    font-size: 0.875rem;
    color: #fff;
}

#foot .sideBar .sideLink .head .sideClose {
    flex-shrink: 0;
    font-size: 1rem;
    width: 2.25rem;
    height: 2.25rem;
    line-height: 2.25rem;
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.4s;
}

#foot .sideBar .sideLink .head .sideClose:hover {
    color: var(--title);
    background: var(--colour2);
}

#foot .sideBar .sideLink .body {
    color: var(--text);
}

#foot .sideBar .sideLink .body img {
    display: block;
    margin: 1rem auto 0.25rem;
    width: 61.8%;
}

#foot .sideBar .sideLink .body p {
    margin-bottom: 0;
}

#foot .sideBar .sideLink .body span {
    display: block;
    font-size: 0.875rem;
}

#foot .sideBar .sideLink .body span {
    display: block;
    font-size: 0.875rem;
}

#foot .sideBar .sideLink .body a.btn {
    display: inline-block;
    padding: 0 1rem;
    margin: 1rem auto 1.5rem;
    font-size: 0.875rem;
    line-height: 2.25em;
    color: #fff;
    background: var(--colour1);
    transition: all 0.4s;
}

#foot .sideBar .sideLink .body a.btn:hover {
    color: var(--title);
    background: var(--colour2);
}

.wap-bottom {
    position: fixed;
    z-index: 999;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    background: var(--colour1);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.wap-bottom a {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    flex: 1;
    font-size: 0.875rem;
    text-align: center;
    line-height: 3rem;
    color: #fff;
}

.wap-bottom a .icon {
    font-size: 1.125rem;
    line-height: 3rem;
}


/*内页开始*/

.inside-banner {
    position: relative;
    background: none;
    overflow: hidden;
}

.inside-banner .info {
    position: absolute;
    z-index: 2;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #fff;
}

.inside-banner .info .title {
    font-size: 4rem;
    line-height: 1em;
    font-weight: bold;
    line-height: 1.25em;
    color: #fff;
}

.inside-banner .info .subtitle {
    font-size: 5rem;
    line-height: 1em;
    font-weight: bolder;
    text-transform: Uppercase;
    -webkit-text-stroke: 0.5px rgba(255, 255, 255, 0.3);
    -webkit-text-fill-color: transparent;
}

.inside-banner .info p {
    margin: 0.75rem 0 0;
    max-width: 40rem;
    font-size: 1.125rem;
}

.inside-banner .info {
    position: absolute;
    z-index: 2;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #fff;
}

.breadcrumb {
    position: absolute;
    z-index: 3;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0px;
    margin: 0;
    background: none;
}

.breadcrumb>div {
    font-size: 0px;
}

.breadcrumb a {
    display: inline-block;
    font-size: 0.875rem;
    line-height: 3.5rem;
    color: #fff;
    transition: all .4s;
}

.breadcrumb a:hover {
    color: var(--colour1);
}

.breadcrumb a:not([href]):not([tabindex]) {
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumb a:after {
    content: ">";
    margin: 0 5px;
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumb a:not([href]):not([tabindex]):after {
    content: "";
}

@media(max-width:767.8px) {
    .inside-nav .container {
        padding: 0px;
        width: 100%;
        min-width: 100%!important;
    }
}


/*关于*/

#about .info {
    width: 88%;
    margin: auto;
}

#about .about-style {
    margin-top: 2rem;
}

#culture {
    overflow: visible;
}

.culture-list {
    padding-top: 3rem;
    position: relative;
    display: flex;
    justify-content: space-between;
}

.culture-list li {
    width: 24%;
    padding: 1.75rem;
    background: var(--grey_bg);
    transition: all 0.4s;
}

.culture-list li:hover {
    background: #fff;
    box-shadow: 0 0 1rem var(--shadow);
}

.culture-list li .head span {
    display: inline-block;
    font-size: 1.75rem;
    line-height: 3rem;
    font-weight: bold;
    color: var(--colour1);
    transition: all 0.4s;
}

.culture-list li:hover .head span {
    color: var(--colour3);
}

.culture-list li .head .icon {
    margin-right: 0.5rem;
    font-size: 3rem;
    font-weight: normal;
}

.culture-list li pre {
    margin: 1rem 0;
    font-size: 1rem;
}

.course-list {
    position: relative;
    z-index: 1;
    margin-top: 4rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.course-list li {
    position: relative;
    z-index: 1;
    width: 33.33%;
}

.course-list li .box {
    position: relative;
    z-index: 3;
    width: 22.5rem;
    max-width: 95%;
    min-height: 100%;
    padding: 2rem;
    margin: auto;
    background: var(--grey_bg);
    transition: all 0.4s;
}

.course-list li:nth-of-type(1),
.course-list li:nth-of-type(4) {
    z-index: 2 !important;
}

.course-list li .box:hover {
    background: #fff;
    box-shadow: 0 0 1rem var(--shadow);
    transition: all 0.4s;
}

.course-list li .box:before {
    content: "";
    position: absolute;
    z-index: 1;
    width: calc(1rem + 4px);
    height: calc(1rem + 4px);
    border: 1px solid var(--colour1);
    border-radius: 50%;
    transition: all .4s;
}

.course-list li .box:after {
    content: "";
    position: absolute;
    z-index: 1;
    width: 1rem;
    height: 1rem;
    background-color: var(--colour1);
    border-radius: 50%;
    transition: all .4s;
}

.course-list li span {
    position: absolute;
    z-index: 1;
    font-size: 1rem;
    line-height: 1em;
}

.course-list li .title {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: bold;
}

.course-list li span,
.course-list li .title {
    color: var(--colour1);
}

.course-list li.active span,
.course-list li.active .title,
.course-list li:hover span,
.course-list li:hover .title {
    color: var(--colour3);
}

.course-list li.active .box:before,
.course-list li:hover .box:before {
    border: 1px solid var(--colour3);
}

.course-list li.active .box:after,
.course-list li:hover .box:after {
    background: var(--colour3);
}

@media (min-width:1200px) {
    .course-list li {
        display: flex;
        flex-wrap: wrap;
    }
    .course-list li:nth-of-type(2):before {
        content: "";
        position: absolute;
        z-index: -1;
        bottom: 0.75rem;
        left: 50%;
        width: 100vw;
        height: 1px;
        background-color: var(--colour1);
        transform: translate( -50%, 0%);
        opacity: 0.4;
    }
    .course-list li:nth-of-type(5):before {
        content: "";
        position: absolute;
        z-index: -1;
        top: 0.75rem;
        left: 50%;
        width: 100vw;
        height: 1px;
        background-color: var(--colour1);
        transform: translate( -50%, 0%);
        opacity: 0.4;
    }
    .course-list li:nth-of-type(1),
    .course-list li:nth-of-type(2),
    .course-list li:nth-of-type(3) {
        padding-bottom: 4.125rem;
    }
    .course-list li:nth-of-type(4),
    .course-list li:nth-of-type(5),
    .course-list li:nth-of-type(6) {
        padding-top: 4.125rem;
    }
    .course-list li .box:before {
        content: "";
        left: 50%;
    }
    .course-list li .box:after {
        content: "";
        left: 50%;
    }
    .course-list li:nth-of-type(1) .box:before,
    .course-list li:nth-of-type(2) .box:before,
    .course-list li:nth-of-type(3) .box:before,
    .course-list li:nth-of-type(1) .box:after,
    .course-list li:nth-of-type(2) .box:after,
    .course-list li:nth-of-type(3) .box:after {
        bottom: -3.25rem;
        transform: translate( -50%, 50%);
    }
    .course-list li:nth-of-type(4) .box:before,
    .course-list li:nth-of-type(5) .box:before,
    .course-list li:nth-of-type(6) .box:before,
    .course-list li:nth-of-type(4) .box:after,
    .course-list li:nth-of-type(5) .box:after,
    .course-list li:nth-of-type(6) .box:after {
        top: -3.25rem;
        transform: translate( -50%, -50%);
    }
    .course-list li span {
        bottom: -2rem;
        left: 50%;
        transform: translate( -50%, 0%);
    }
    .course-list li:nth-of-type(4) span,
    .course-list li:nth-of-type(5) span,
    .course-list li:nth-of-type(6) span {
        bottom: auto;
        top: -2rem;
    }
}

@media (min-width: 768px) and (max-width:1199.98px) {
    .course-list {
        padding-top: 0;
    }
    .course-list li {
        position: static;
        margin-bottom: 2rem;
        width: calc(50% - 4rem);
    }
    .course-list li:nth-last-of-type(1),
    .course-list li:nth-last-of-type(2) {
        margin-bottom: 0;
    }
    .course-list li:nth-of-type(1),
    .course-list li:nth-of-type(4) {
        z-index: 1 !important;
    }
    .course-list li:nth-of-type(1):before {
        content: "";
        position: absolute;
        z-index: -1;
        top: 0;
        left: calc( 50% - 1rem);
        width: 1px;
        height: 100%;
        background-color: var(--colour1);
        opacity: 0.4;
    }
    .course-list li:nth-of-type(2):before {
        content: "";
        position: absolute;
        z-index: -1;
        top: 0;
        right: calc( 50% - 1rem);
        width: 1px;
        height: 100%;
        background-color: var(--colour1);
        opacity: 0.4;
    }
    .course-list li .box {
        position: relative;
        z-index: 3;
        width: 100%;
        max-width: none;
        min-height: 100%;
        padding: 2rem;
        margin: auto;
        background: var(--grey_bg);
    }
    .course-list li:nth-of-type(Odd) .box:before,
    .course-list li:nth-of-type(Odd) .box:after {
        right: -3rem;
        top: 50%;
        transform: translate( 50%, -50%);
    }
    .course-list li:nth-of-type(even) .box:before,
    .course-list li:nth-of-type(even) .box:after {
        left: -3rem;
        top: 50%;
        transform: translate( -50%, -50%);
    }
    .course-list li:nth-of-type(Odd) span {
        left: 100%;
        top: 50%;
        transform: translate( 0%, -50%);
    }
    .course-list li:nth-of-type(even) span {
        right: 100%;
        top: 50%;
        transform: translate( 0%, -50%);
    }
}

@media (max-width: 767px) {
    .course-list:before {
        content: "";
        position: absolute;
        z-index: -1;
        top: 0;
        left: 0;
        width: 1px;
        height: 100%;
        background-color: var(--colour1);
        opacity: 0.4;
    }
    .course-list li {
        position: static;
        margin-bottom: 2rem;
        width: 100%;
        padding-left: 2rem;
    }
    .course-list li:last-of-type {
        margin-bottom: 0;
    }
    .course-list li .box {
        width: 100%;
        max-width: 100%;
    }
    .course-list li .box:before,
    .course-list li .box:after {
        left: -2rem;
        top: 2rem;
        transform: translate( -50%, -50%);
    }
    .course-list li span {
        left: -3rem;
        top: 3rem;
        line-height: 2em;
        background: #fff;
    }
}


/*荣誉*/

.honor-content {
    padding-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.honor-content .left {
    width: 25%;
}

.honor-content .right {
    width: 72%;
}

.honor-content .right ul {
    display: flex;
    flex-wrap: wrap;
}

.honor-content .right ul li {
    position: relative;
    z-index: 1;
    width: 33.33%;
    padding: 0 3rem;
}

.honor-content .right ul li:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0.5rem;
    left: 1.5rem;
    width: 0.6875rem;
    height: 0.6875rem;
    background-color: var(--colour3);
    border-radius: 50%;
    transition: all .4s;
}

.honor-content .right ul li span {
    font-size: 0.9375rem;
    line-height: 2em;
    color: var(--small_text);
}

.honor-content .right ul li p {
    font-size: 1.125rem;
    color: var(--text);
}

.honor {
    margin-top: 2rem;
}

.honor .owl-item {
    padding: 1rem;
}

.honor .item {
    text-align: center;
    transform: scale(0.8);
    box-shadow: 0 0 1rem var(--shadow);
    transform: all 0.4s;
}

.honor .center .item {
    transform: scale(1);
}

.honor .item .img {
    overflow: hidden;
}

.honor .item .img {
    padding-bottom: 110%;
}

.honor .item .img img {
    max-width: 95%;
    max-height: 95%;
}

.honor .item .title {
    padding: 2rem 0;
    font-size: 1.25rem;
    font-weight: bold;
    transition: all 0.4s;
}

.honor .item:hover .title {
    color: var(--colour1);
}


/*产品*/

#product {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.product-nav {
    width: 15rem;
}

.product-nav>.head {
    margin-bottom: 2rem;
    display: block;
    font-size: 2.25rem;
    line-height: 3rem;
    font-weight: bold;
    color: var(--colour1);
    text-align: center;
    background: var(--colour2);
    border-radius: 1rem 0 1rem 0;
}

.product-nav>.head span {
    display: block;
    transform: translate( 0, -0.6875em);
}

.product-nav li {
    border-bottom: 1px solid var(--btn_bg);
}

.product-nav li:first-of-type {
    border-top: 1px solid var(--btn_bg);
}

.product-nav .nav-subtitle {
    padding: 0 1rem;
    line-height: 3rem;
    background: var(--grey_bg);
}

.product-nav .nav-title,
.product-nav .nav-subtitle {
    display: flex;
    flex-grow: 1;
    justify-content: space-between;
    flex-shrink: 1;
}

.product-nav a {
    position: relative;
    color: var(--text);
}

.product-nav .nav-title a {
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    width: 100%;
    line-height: inherit;
    text-align: center;
    flex-shrink: 0;
    font-size: 1.125rem;
    line-height: 3em;
    font-weight: bold;
    color: #fff !important;
    background: var(--colour1);
}

.product-nav .nav-subtitle a:nth-of-type(2) {
    display: inline-block;
    width: 1.5rem;
    line-height: inherit;
    text-align: center;
    flex-shrink: 0;
}

.product-nav a .icon {
    display: inline-block;
    font-size: 1.25rem;
    font-weight: normal;
    transition: all 0.4s;
}

.product-nav a.collapsed .icon,
.product-nav a.collapsed .icon {
    transform: rotate(180deg);
}

.product-nav .nav-subcontent dd {
    margin-bottom: 1px;
}

.product-nav .nav-subcontent div {
    padding: 0.5rem 0 1rem;
}

.product-nav .nav-subcontent a {
    padding: 0 2rem;
    font-size: 0.875rem;
    line-height: 2.5em;
    display: block;
}

.product .product-content {
    width: calc(100% - 5% - 15rem);
}

.product-nav .nav-title a.active {
    color: var(--colour2) !important;
    background: var(--colour1);
}

.product-nav .nav-subtitle a.active {
    font-weight: bold;
    color: var(--colour1);
}

.product-nav .nav-subcontent a:before {
    content: "";
    display: inline-block;
    margin-left: 0;
    width: 0;
    height: 0.125rem;
    transform: translate( 0, -0.25rem);
    background: var(--colour1);
    transition: all 0.4s;
}

.product-nav .nav-subcontent a.active:before {
    content: "";
    margin-right: 0.5rem;
    margin-top: -0.25rem;
    width: 0.75rem;
}

.product-nav .nav-subcontent a.active {
    color: var(--colour1);
}

.product-nav .nav-subcontent a.active {
    color: var(--colour1);
}


/*手机端*/

#p-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1051;
    background: #fff;
    box-shadow: 0 0 1rem rgba(29, 37, 48, 0.07);
}

#p-menu .product-nav {
    width: 100%;
}

#p-menu .menu-head {
    padding: 0 0 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--head_height);
    background: var(--grey_bg);
}

#p-menu .menu-head .title {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--colour1);
}

#p-menu .menu-head .close {
    opacity: 1 !important;
}

#p-menu .menu-head .close .icon {
    display: inline-block;
    font-size: 1.25rem;
    width: var(--head_height);
    height: var(--head_height);
    line-height: var(--head_height);
    color: #fff;
    text-align: center;
    font-weight: normal;
    background: var(--colour2);
}

#p-menu .menu-body {
    height: calc(100vh - var(--head_height));
    overflow: auto;
}


/*产品列表*/

.product-list {
    width: calc(100% - 5% - 15rem);
}

.product-list .head {
    display: flex;
    justify-content: end;
    align-items: flex-end;
    margin-bottom: 2rem;
    height: 3rem;
    border-radius: 1rem 0 1rem 0;
}

.product-list .head img {
    width: auto;
    max-width: calc(100% - 4rem);
}

#p-menu-btn {
    flex-shrink: 0;
    display: none;
    padding: 0;
    width: 3rem;
    height: 3rem;
    line-height: 3rem;
    background: var(--colour2);
    font-size: 1.5rem;
    color: #fff;
    text-align: center;
    border-radius: 0;
    border: none;
}

#p-menu-btn .icon {
    line-height: inherit;
    font-size: inherit;
    color: inherit;
}

.product-list .content {
    border-top: 1px solid var(--btn_bg);
}

.product-list ul {
    display: flex;
    flex-wrap: wrap;
    margin-top: 1rem;
    margin-left: -0.75rem;
    margin-right: -0.75rem;
}

.product-list li {
    width: 25%;
    padding: 0.75rem;
}

.product-list li .img {
    background: var(--grey_bg);
    overflow: hidden;
    transition: all 0.4s;
}

.product-list li a:hover .img {
    background: #fff;
    box-shadow: 0 0 1rem var(--shadow);
}

.product-list li .img img {
    mix-blend-mode: multiply;
}

.product-list li .title {
    padding: 1rem 0;
    text-align: center;
    color: var(--text);
    transition: all 0.4s;
}

.product-list li a:hover .title {
    color: var(--colour1);
}


/*产品详情*/

.product {
    position: relative;
    padding-bottom: 2rem
}

.product-slogan1 {
    max-width: auto;
    height:6vh;
    margin-top: 4vh;
    margin-bottom: 2vh;
}

.product-slogan2 {
    margin-bottom: -35rem;
}

#product-img {
    position: relative;
    width: 35rem;
    max-width: 61.8vw;
    margin: auto;
}

#product-img .owl-stage-outer {
    border-radius: 50%;
    background: var(--grey_bg);
    overflow: hidden;
}

#product-img .item {
    text-align: center;
}

#product-img .item a {
    display: inline-block;
    width: 35rem;
    height: 35rem;
    padding: 2rem;
    max-width: 61.8vw;
    max-height: 61.8vw;
    background: var(--grey_bg);
    border-radius: 50%;
    overflow: hidden;
}

#product-img .item img {
    mix-blend-mode: multiply;
}

#product-img .item a {
    cursor: zoom-in;
}

#product-img .owl-nav {
    position: static;
}

#product-img .owl-nav [class*=owl-] {
    position: absolute;
    z-index: 2;
    top: 17.5rem;
    display: inline-block;
    margin: 0;
    width: 4rem;
    height: 4rem;
    line-height: 4rem;
    font-size: 1.5rem;
    text-align: center;
    color: var(--title);
    background: var(--grey_bg);
    border-radius: 50%;
    transform: translate( 0, -50%);
    transition: all 0.4s;
}

#product-img .owl-nav [class*=owl-]:hover {
    color: #fff;
    background: var(--colour1);
}

#product-img .owl-nav [class*=owl-].owl-prev {
    right: calc( 110%);
}

#product-img .owl-nav [class*=owl-].owl-next {
    left: calc( 110%);
}

#product-img .owl-nav [class*=owl-] .icon {
    line-height: inherit;
    font-size: inherit;
    text-align: center;
    color: inherit;
}

#product-img .owl-dots {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0 1rem;
    width: 65rem;
    max-width: 80vw;
    margin-top: 2rem;
    margin-left: 50%;
    transform: translate( -50%, 0%);
}

#product-img .owl-dot {
    width: 6rem;
    padding: 0.125rem!important;
    margin: 0.25rem;
    border: 1px solid #ebebeb;
    transition: all 0.4s;
}

#product-img .owl-dot.active {
    opacity: 1;
    border: 1px solid var(--colour1);
}

.product-d {
    margin-bottom: 2rem;
    overflow: visible;
}

.product-d .nav-tabs {
    position: sticky;
    z-index: 2;
    left: 0;
    right: 0;
    top: var(--head_height);
    justify-content: center;
    margin-bottom: 3rem;
    background: var(--grey_bg);
    text-align: center;
    border: none;
}

.product-d .nav-tabs li {
    margin: 0 2%;
}

.product-d .nav-tabs a {
    display: block;
    padding: 1.25em 2em;
    font-size: 1.125rem;
    line-height: 1.5em;
    border: none;
    border-top: 0.25rem solid rgba(255, 255, 255, 0);
    border-bottom: 0.25rem solid var(--grey_bg);
    color: var(--text);
    transition: all 0.4s;
}

.product-d .nav-tabs a:hover,
.product-d .nav-tabs a:focus {
    display: block;
    border-top: 0.25rem solid rgba(255, 255, 255, 0);
    border-bottom: 0.25rem solid var(--grey_bg);
}

.product-d .nav-tabs a.active {
    font-weight: bold;
    color: var(--colour1);
    background: #fff;
    border-top: 0.25rem solid #fff;
    border-bottom: 0.25rem solid var(--colour1);
}

#p-d2 ul,
#p-d2 p {
    margin: 0;
}

#p-d2 ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

#p-d2 ul li {
    width: calc(50% - 2rem);
    display: flex;
    padding: 1.5rem 0;
    margin-top: -1px;
    border-bottom: 1px solid #ebebeb;
}

#p-d2 ul li strong,
#p-d2 ul li b {
    display: inline-block;
    margin-right: 2.5rem;
    white-space: nowrap;
}

.p-service {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.p-service dd {
    margin-bottom: 2rem;
    display: flex;
    width: calc(50% - 1rem);
    padding: 2.5rem;
    background: var(--grey_bg);
    transition: all 0.4s;
}

.p-service dd:hover {
    background: #fff;
    box-shadow: 0 0 1rem var(--shadow);
}

.p-service dd .icon {
    flex-shrink: 0;
    margin-right: 2.5rem;
}

.p-service dd .icon>div {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: var(--colour1);
    transition: all 0.4s;
}

.p-service dd .title {
    transition: all 0.4s;
}

.p-service dd:hover .icon>div {
    background: var(--colour3);
}

.p-service dd:hover .title {
    color: var(--colour3);
}

.product-d .nav-tabs{
    margin-left:auto;
    margin-right:auto;
    

}
/*模具制造*/

#mold-about .mold-info {
    max-width: 90%;
    margin: auto;
}

#mold-about ul {
    display: flex;
    justify-content: space-between;
}

#mold-about ul li {
    position: relative;
    z-index: 1;
    width: calc(33.33% - 1rem);
    padding: 2rem 2rem 3rem;
    border: 1px solid var(--btn_bg);
    transition: all 0.4s;
}

#mold-about ul li:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0px;
    right: 0%;
    width: 30%;
    height: 0%;
    padding-bottom: 30%;
    background: url(../images/img-mold-bg.png) center no-repeat;
    background-size: cover;
}

#mold-about ul li .head {
    margin-bottom: 3rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--title);
    transition: all 0.4s;
}

#mold-about ul li strong {
    margin-right: 1.5rem;
    font-size: 2rem;
    transition: all 0.4s;
}

#mold-about ul li:hover {
    border: 1px solid var(--colour3);
    box-shadow: 0 0 1rem var(--shadow);
}

#mold-about ul li:hover .head,
#mold-about ul li:hover strong {
    color: var(--colour3);
}

.mold .item {
    padding: 0.75rem;
}

.mold .item a {
    display: block;
    box-shadow: 0 0 1rem var(--shadow);
}

.mold .item a .img {
    overflow: hidden;
}

.mold .item a .title {
    padding: 1em 0;
    font-size: 1.5rem;
    line-height: 1em;
    font-weight: bold;
    text-align: center;
    transition: all 0.4s;
}

.mold .item a:hover .title {
    color: var(--colour3);
}

a.mold-btn {
    margin-top: 2rem;
    display: inline-block;
    padding: 0 2rem;
    font-size: 1rem;
    line-height: 2.75em;
    color: var(--title);
    background: var(--colour2);
    border-radius: 0.25rem;
    transition: all 0.4s;
}

a.mold-btn:hover {
    color: #fff;
    background: var(--colour3);
}

#mold-case ul {
    display: flex;
    justify-content: space-between;
}

#mold-case ul li {
    width: 20%;
    text-align: center;
}

#mold-case ul li .piont {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 8rem;
}

#mold-case ul li .icon div {
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 8rem;
    height: 8rem;
    background: var(--grey_bg);
    border-radius: 50%;
}

#mold-case ul li .icon img {
    filter: grayscale(100%);
    filter: brightness(0.2);
    transition: all 0.4s;
}

#mold-case ul li:hover .icon img {
    filter: grayscale(0%);
    filter: brightness(1);
}

#mold-case ul li .title {
    margin: 1.5rem 0;
    font-size: 1.5rem;
    font-weight: bold;
    transition: all 0.4s;
}

#mold-case ul li:hover .title {
    color: var(--colour3);
}

.contact-mold a {
    margin-top: 1.5rem;
    display: inline-block;
    white-space: nowrap;
    border-radius: 2rem;
    line-height: 2rem;
    height: 2rem;
    color: var(--title);
    font-weight: bold;
    box-sizing: content-box;
    border: 2px solid var(--colour2);
    overflow: hidden;
}

.contact-mold span {
    display: inline-block;
    padding: 0 1rem;
    overflow: hidden;
    transition: all 0.6s;
}

.contact-mold span:first-child {
    border-radius: 2rem;
    font-weight: bold;
    background: var(--colour2);
}

.contact-mold span:last-child {
    max-width: 0;
    padding: 0;
}

.contact-mold a:hover span:last-child {
    max-width: 20rem;
    padding: 0 1rem;
}

.contact-mold img {
    margin-right: 0.25rem;
}

#mold-rnd ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

#mold-rnd li {
    width: calc(25% - 1rem);
}

#mold-rnd li .img {
    padding-bottom: 61.8%;
    overflow: hidden;
}

#mold-rnd li .img img {
    width: 100%;
}

#mold-rnd li .title {
    margin: 1.5rem 0;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    transition: all 0.4s;
}

#mold-rnd li:hover .title {
    color: var(--colour3);
}


/*模具*/

.mold-list {
    position: relative;
    margin-bottom: 2rem;
}

.mold-list .title {
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 15px;
    right: 15px;
    padding: 2rem 1rem 1rem;
    font-size: 0.9375rem;
    line-height: 1.5em;
    color: #fff;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.mold-list .img {
    padding-bottom: 68.75%;
    overflow: hidden;
}

.mold-list .img img {
    width: 100%;
    height: 100%;
}


/*服务*/

.service {}

.service-list .item {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 10vh;
}

.service-list .item:last-of-type {
    margin-bottom: 4vh;
}

.service-list .item .left {
    width: 50%;
}

.service-list .item .left a {
    display: block;
    height: 100%;
    overflow: hidden;
}

.service-list .item .info {
    width: 50%;
    min-height: 30rem;
    padding: 5%;
    background: url(../images/service-bg.png) center no-repeat;
    background-size: cover;
}

.service-list .item .info .subtitle {
    font-size: 1.125rem;
}


/*图片--缩小*/

.picture-list {
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.75rem;
    margin-right: -0.75rem;
}

.picture-list li {
    width: 25%;
    padding: 0.75rem;
    text-align: center;
}

.picture-list li .img {
    background: var(--grey_bg);
}

.picture-list li .img img {
    max-width: 90%;
    max-height: 90%;
    mix-blend-mode: multiply;
}


/*图片--平铺*/

.picture-list2 {
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.75rem;
    margin-right: -0.75rem;
}

.picture-list2 li {
    width: 25%;
    padding: 0.75rem;
    text-align: center;
}

.picture-list2 li .img {
    background: var(--grey_bg);
    overflow: hidden;
}

.picture-list2 li .img img {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    mix-blend-mode: multiply;
}

.picture-list2 li p {
    margin: 0.5rem 0;
}

.picture-list li p {
    margin: 0.5rem 0;
}


/*新闻列表*/

.news-list li {
    margin-bottom: 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.news-list li .info {
    padding: 1.5rem 0;
    order: 0;
    width: calc(100% - 25rem);
    border-bottom: 1px dashed var(--btn_bg);
}

.news-list li .info .time {
    margin-bottom: 0.5rem;
    color: var(--small_text);
}

.news-list li .info a.title {
    display: block;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    color: var(--title);
    transition: all 0.4s;
}

.news-list li .info pre {
    font-size: 1rem;
    transition: all 0.4s;
}

.news-list li .img {
    order: 1;
    width: 20rem;
    overflow: hidden;
}

.news-list li .img a {
    display: block;
    height: 100%;
    padding-bottom: 0;
}

.news-list li .img a img {
    width: 100%;
    height: 100%;
}

.news-list li:hover .info a.title {
    color: var(--colour1);
    transition: all 0.4s;
}

.news-list li:hover .info pre {
    color: var(--colour1);
}


/*新闻详情*/

.news {
    max-width: 60rem;
    margin: auto;
}

.news>div {
    padding-left: 5%;
    padding-right: 5%;
}

.news .head {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, .05);
}

.news .time {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
    font-size: 1rem;
    color: var(--small_text);
}

.news .body {
    padding-bottom: 2rem;
    margin-bottom: 3rem;
    border-bottom: 1px solid rgba(0, 0, 0, .05);
}

.news .news-page {
    display: flex;
    justify-content: space-between;
}

.news .news-page a {
    font-size: 1.125rem;
    color: var(--title);
    font-weight: bold;
    transition: all 0.4s;
}

.news .news-page a:hover {
    color: var(--colour1);
}


/*faq*/

.faq-list li {
    padding: 2.5rem 10%;
}

.faq-list li:nth-of-type(even) {
    background: var(--grey_bg);
}

.faq-list li>div {
    display: flex;
}

.faq-list li>div .icon {
    margin-right: 1.5rem;
    width: 2rem;
    flex-shrink: 0;
}

.faq-list li .head {
    margin-bottom: 1.5rem;
}

.faq-list li .head .title {
    margin: 0.5rem 0;
}


/*加入我们*/

#join {
    margin-top: 2em;
}

#join .join-head {
    display: block;
    background: var(--grey_bg);
    white-space: nowrap;
}

#join .join-head.collapsed {
    background: #fff;
}

#join .join-head:hover {
    background: var(--grey_bg);
}

#join>.join-head {
    color: var(--colour1);
    font-weight: bold;
    border-radius: 0.5rem 0.5rem 0 0;
    border-left: 1px solid rgba(0, 0, 0, .125);
    border-right: 1px solid rgba(0, 0, 0, .125);
    border-bottom: 1px solid rgba(0, 0, 0, .125);
    border-top: 2px solid var(--colour1);
    background: #fff!important;
}

.join-head>div {
    display: inline-block;
    padding: 1.75rem 0;
    vertical-align: middle;
    font-size: 0.875rem;
    text-align: center;
    white-space: normal;
    transition: all 0.4s;
}

.join-head .name {
    width: 30%;
    font-size: 1em;
    padding-left: 2em;
    text-align: left;
}

.join-head .class {
    width: 17%;
}

.join-head .place {
    width: 17%;
}

.join-head .number {
    width: 17%;
}

.join-head .time {
    width: 17%;
}

#join .card {
    border-radius: 0;
    border: none;
    border-left: 1px solid rgba(0, 0, 0, .125);
    border-right: 1px solid rgba(0, 0, 0, .125);
}

#join .card:last-child .join-head {
    border-radius: 0 0 0.5rem 0.5rem;
}

#join .card-header {
    padding: 0;
    border-radius: 0;
    background: none;
}

#join .card-body {
    padding: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, .125);
}

#join .btn-link {
    margin-top: 3em;
    margin-bottom: 1em;
    display: inline-block;
    padding: 0 2em;
    font-size: 1em;
    line-height: 3em;
    color: #fff;
    border-radius: 0.75rem;
    background: var(--colour1);
    transition: all 0.4s;
}

#join .btn-link:hover {
    background: var(--colour2);
}


/*联系方式*/

.contact .contact-infobox {
    padding: 0 2rem;
}

.contact-tips {
    display: inline-block;
    margin-bottom: 1.5rem;
    padding: 0 1.5em;
    font-size: 0.9375rem;
    line-height: 1.75em;
    border-radius: 0.5rem 0 0.5rem 0;
    background: var(--colour2);
}

.contact-slogan {
    background-image: -webkit-linear-gradient(to right, var(--colour1), #808cc5);
    background: linear-gradient(to right, var(--colour1), #808cc5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact1 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 1.125rem;
    color: var(--text);
}

.contact1 span {
    margin: 1rem 0;
    display: inline-block;
    min-width: 30%;
}

.contact1 span a {
    display: inline-block;
    color: inherit;
    transition: all 0.4s;
}

.contact1 span a:hover {
    color: var(--colour3);
}

.contact2 ul {
    padding: 3rem 5%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.contact2 ul li {
    width: 30%;
}

.contact2 ul li .icon {
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: var(--colour1);
    transition: all 0.4s;
}

.contact2 ul li:hover .icon {
    transform: rotateY(180deg);
    background: var(--colour3);
}

.contact2 ul li .icon img {
    width: 45%;
}

.contact2 ul li .title {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    font-weight: bold;
}

.contact2 ul li .subtitle {
    font-size: 1.125rem;
    font-weight: bold;
    color: var(--colour1);
}


/*地图*/

#map-canvas {
    height: 60vh;
    width: 100%;
    padding: 0px;
    color: #666;
}

.content-window-card {
    position: relative;
    box-shadow: none;
    bottom: 0;
    left: 0;
    width: auto;
    padding: 0;
}

.content-window-card p {
    height: 2rem;
}

.amap-icon img,
.amap-marker-content img {
    width: 25px;
    height: 34px;
}

.custom-info {
    border: solid 1px silver;
}

div.info-top {
    display: none;
    position: relative;
    background: none repeat scroll 0 0 #F9F9F9;
    border-bottom: 1px solid #CCC;
    border-radius: 5px 5px 0 0;
}

div.info-top div {
    display: inline-block;
    color: #333333;
    font-size: 14px;
    font-weight: bold;
    line-height: 31px;
    padding: 0 10px;
}

div.info-top img {
    position: absolute;
    top: 10px;
    right: 10px;
    transition-duration: 0.25s;
}

div.info-top img:hover {
    box-shadow: 0px 0px 5px #000;
}

div.info-middle {
    font-size: 12px;
    padding: 10px 15px;
    line-height: 20px;
    overflow: hidden;
}

div.info-bottom {
    height: 0px;
    width: 100%;
    clear: both;
    text-align: center;
}

div.info-bottom img {
    position: relative;
    z-index: 104;
}

.custom-info span {
    margin-left: 5px;
    font-size: 11px;
}

.info-middle img {
    float: left;
    margin-right: 6px;
}


/*地图*/


/*在线留言*/

.contact-feedback {
    padding: 2rem;
}

.feedback input,
.feedback select {
    outline: none;
    margin-bottom: 1rem;
    width: 100%;
    padding: 0px 1rem;
    font-size: 1rem;
    line-height: 3rem;
    height: 3rem;
    color: #666;
    border: none;
    background: #FFF;
    transition: all .4s;
}

.feedback select {
    appearance: none;
}

.feedback .label input {
    display: none;
}

.field-name-prefix-item {
    display: inline-block;
}

.field-name-prefix-item label {
    display: block;
    margin-bottom: 18px;
    line-height: 40px;
    text-align: center;
    width: 126px;
    cursor: pointer;
    background: #FFF;
    transition: color .15s, background .15s;
}

.field-name-prefix-item input[type=radio]:checked+label {
    color: #fff;
    background: var(--colour1);
}

.form-control {
    border: 1px solid #ebebeb;
    line-height: 44px;
    height: 44px;
    width: 100%;
    padding: 0px 15px;
    margin: 10px 0px;
    border-radius: none;
    box-shadow: 0;
}

.feedback textarea {
    border: none;
    font-size: 15px;
    line-height: 22px;
    width: 100%;
    height: 160px;
    padding: 15px;
    margin: 10px 0px;
    outline: none;
    box-shadow: none;
    overflow-x: hidden;
    background: #FFF;
}

.feedback input:focus,
.feedback textarea:focus {}

.choice-privacy {
    margin-bottom: 20px;
}

.choice-privacy input {
    margin-bottom: 3px;
    margin-right: 6px;
    display: inline-block;
    width: 16px;
    height: 16px;
    vertical-align: middle;
}

.choice-privacy input[type=radio]:checked~label {
    background: var(--colour1);
}

.choice-privacy label a {
    color: #666;
    text-decoration: underline;
}

.choice-privacy label a:hover {
    color: var(--colour1);
    text-decoration: underline;
}

.feedback .submit {
    display: inline-block;
    padding: 0px 4em;
    background: var(--colour1);
    font-size: 1rem;
    line-height: 3rem;
    color: #fff;
    margin: 15px 0px;
    border-radius: 0.25rem;
    transition: all .3s;
}

.feedback .submit:hover {
    background: var(--colour2);
}

.feedback .submit span {
    display: inline-block;
    font-size: 20px;
    line-height: inherit;
    color: #fff!important;
    vertical-align: bottom;
}